return 0;
}
else {
return this.topHalfCard.getConvertedManaCost() + this.bottomHalfCard.getConvertedManaCost();
}
}
if (this.isCopy()) {
return 0;
} else {
return (this.topHalfCard != null ? this.topHalfCard.getConvertedManaCost() : 0)
+ (this.bottomHalfCard != null ? this.bottomHalfCard.getConvertedManaCost() : 0);
}
}